home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / girl_makeover_9.swf / scripts / DefineButton2_179 / BUTTONCONDACTION on(release).as
Text File  |  2011-01-13  |  322b  |  14 lines

  1. on(release){
  2.    if(_parent.play_b)
  3.    {
  4.       if(this._parent.girl_mc.clothing_mc._currentframe == this._parent.girl_mc.clothing_mc._totalframes)
  5.       {
  6.          this._parent.girl_mc.clothing_mc.gotoAndStop(2);
  7.       }
  8.       else
  9.       {
  10.          this._parent.girl_mc.clothing_mc.nextFrame();
  11.       }
  12.    }
  13. }
  14.